Skip to content

chore(deps): update dependency @cloudflare/vite-plugin to v1.42.3#8548

Open
renovate[bot] wants to merge 1 commit into
latestfrom
renovate/cloudflare-vite-plugin-1.x
Open

chore(deps): update dependency @cloudflare/vite-plugin to v1.42.3#8548
renovate[bot] wants to merge 1 commit into
latestfrom
renovate/cloudflare-vite-plugin-1.x

Conversation

@renovate

@renovate renovate Bot commented Apr 17, 2026

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
@cloudflare/vite-plugin (source) 1.29.11.42.3 age confidence

Release Notes

cloudflare/workers-sdk (@​cloudflare/vite-plugin)

v1.42.3

Compare Source

Patch Changes

v1.42.2

Compare Source

Patch Changes
  • #​14358 4ef872f Thanks @​gabivlj! - Fix container egress interception on arm64 Docker runtimes

    Both wrangler dev and the Cloudflare Vite plugin no longer force the proxy-everything sidecar image to pull as linux/amd64, allowing Docker to select the native image from the multi-platform manifest. Set MINIFLARE_CONTAINER_EGRESS_IMAGE_PLATFORM to force a specific platform when needed.

  • Updated dependencies [a085dec, 9a0de8f, fab565f, 3f02864, 4ef872f, 2a02858, e312dec]:

    • miniflare@​4.20260623.0
    • wrangler@​4.104.0

v1.42.1

Compare Source

Patch Changes
  • #​14366 c6579d3 Thanks @​jamesopstad! - Resolve relative cf-worker entrypoint imports relative to the importing module

    When loading the experimental cloudflare.config.ts, a relative entrypoint imported with import ... with { type: "cf-worker" } (e.g. ./src/index.ts) is now anchored to the module where the import is written, rather than being passed through verbatim and later resolved against the top-level config file. This fixes incorrect resolution when the import lives in a file other than the entry config — for example a config that re-exports from a nested file.

    Bare specifiers (such as @scope/pkg) and virtual modules (such as virtual:foo) are still left unresolved so that consumers can apply their own resolution.

  • Updated dependencies [c6579d3, 444b75e, b38823f, cfd6205, cfd6205]:

    • wrangler@​4.103.0
    • miniflare@​4.20260617.1

v1.42.0

Compare Source

Minor Changes
  • #​14339 aa49856 Thanks @​jamesopstad! - Add a build command to the experimental, internal cf-vite delegate binary

    cf-vite build runs Vite's full multi-environment app build (via the Builder API) and enables the experimental Build Output API by default, emitting a self-contained .cloudflare/output/v0/ directory. It forces experimental.newConfig and experimental.newConfig.cfBuildOutput on, so a cloudflare.config.ts is required at the project root.

Patch Changes
  • #​14346 e930bd4 Thanks @​haidargit! - Bump ws from 8.20.1 to 8.21.0 to address GHSA-96hv-2xvq-fx4p

    GHSA-96hv-2xvq-fx4p / CVE-2026-48779 (high severity) reports a remote memory-exhaustion DoS in ws@<8.21.0: a peer sending a high volume of tiny fragments and data chunks over modest network traffic can crash a ws server or client via OOM. The fix shipped in ws@8.21.0 (commit 2b2abd45, released 2026-05-22), which also introduces the maxBufferedChunks and maxFragments options. This change bumps the workspace catalog entry so that miniflare, wrangler, and @cloudflare/vite-plugin all pick up the patched release.

  • #​14351 6c7df19 Thanks @​jamesopstad! - Force the experimental new config on by default in the cf-vite dev delegate

  • #​14218 4eed569 Thanks @​matingathani! - Allow resolve.external containing only Node.js built-ins in Worker environments

    Vitest 4 automatically sets resolve.external to the full list of Node.js built-in modules for non-standard Vite environments via its internal runnerTransform plugin. Previously, the Cloudflare Vite plugin rejected any non-empty resolve.external array, throwing an incompatibility error on startup when used alongside Vitest 4.

    The validation check now allows resolve.external arrays that contain only Node.js built-in module names (both bare fs and node:fs forms). The error is only thrown when resolve.external is true or contains non-built-in package names that would prevent user code from being bundled into the Worker.

  • Updated dependencies [673b09e, e930bd4, f6e49dd, 5c3bb11, 296ad65, 594544d, a79b899, 5dfb788, ca61558, 36777db]:

    • miniflare@​4.20260617.0
    • wrangler@​4.102.0

v1.41.0

Compare Source

Minor Changes
  • #​14279 e6e4b07 Thanks @​jamesopstad! - Add experimental.newConfig.cfBuildOutput option to support future deployments via the cf CLI

    // vite.config.ts
    import { defineConfig } from "vite";
    import { cloudflare } from "@&#8203;cloudflare/vite-plugin";
    
    export default defineConfig({
      plugins: [
        cloudflare({
          experimental: {
            newConfig: {
              cfBuildOutput: true,
            },
          },
        }),
      ],
    });
Patch Changes

v1.40.2

Compare Source

Patch Changes
  • #​14184 e305126 Thanks @​penalosa! - Drop the --config flag from the experimental internal cf-vite delegate binary.

    The wrangler config file is now discovered by cloudflare() itself rather than being passed through, keeping cf-vite's flag surface (--mode, --port, --host, --local) in sync with the sibling cf-wrangler delegate. cf-vite is an internal integration point spawned by Cloudflare tooling and is not intended to be run directly by users.

  • Updated dependencies [98c9afe, e305126, f3990b2, 4597f08, 25722ac, 41f75c0, 10b5538, 818c105, 2ae6099, 2047a32, 2047a32, e8561c2]:

    • wrangler@​4.100.0
    • miniflare@​4.20260611.0

v1.40.1

Compare Source

Patch Changes

v1.40.0

Compare Source

Minor Changes
  • #​14013 3cf9d0e Thanks @​jamesopstad! - Add experimental experimental.newConfig option to load the entry Worker's configuration from cloudflare.config.ts

    This is an experimental, opt-in feature. When enabled, the plugin loads the entry Worker's configuration from a cloudflare.config.ts file instead of the usual wrangler.json / wrangler.jsonc / wrangler.toml.

    Pass true to enable with defaults, or an object to customise behaviour. Currently the only sub-option is types.generate (defaults to true), which writes a worker-configuration.d.ts file next to the config. This enables typed env and exports for your Worker and currently assumes that you have @cloudflare/workers-types installed.

    // vite.config.ts
    import { defineConfig } from "vite";
    import { cloudflare } from "@&#8203;cloudflare/vite-plugin";
    
    export default defineConfig({
      plugins: [
        cloudflare({
          experimental: {
            newConfig: true,
          },
        }),
      ],
    });
    // cloudflare.config.ts
    import {
    	defineWorker,
    	bindings,
    } from "@&#8203;cloudflare/vite-plugin/experimental-config";
    import * as entrypoint from "./src/index.ts" with { type: "cf-worker" };
    
    export default defineWorker((ctx) => ({
    	name: "my-worker",
    	entrypoint,
    	compatibilityDate: "2026-05-18",
    	env: {
    		MY_TEXT: bindings.text(`The mode is ${ctx.mode}`),
    		MY_KV: bindings.kv(),
    	},
    }));

    A few limitations apply while the feature is experimental:

    • configPath cannot be combined with experimental.newConfig. The entry Worker is always loaded from cloudflare.config.ts at the project root.
    • auxiliaryWorkers are not yet supported with experimental.newConfig.

    Because this is experimental, the option, the cloudflare.config.ts schema, and the @cloudflare/vite-plugin/experimental-config exports may change in any release.

Patch Changes

v1.39.2

Compare Source

Patch Changes
  • #​13893 d8a16e7 Thanks @​penalosa! - Add an experimental, internal cf-vite delegate binary

    This adds an experimental bin/cf-vite binary that is spawned by Cloudflare's own parent tooling to drive the plugin as a long-running dev-server subprocess. It is not part of the plugin's public API surface, is not intended to be invoked directly, and its contract may change at any time without notice.

  • #​14117 3c86121 Thanks @​aicayzer! - Forward response headers from the Worker on WebSocket upgrade responses

    Headers set on a new Response(null, { status: 101, webSocket, headers }) returned from the Worker are now propagated to the upgrade response sent to the browser during vite dev. Previously the headers were dropped, so cookies (Set-Cookie) and custom headers (X-*) on WebSocket handshake responses were invisible client-side — even though they were delivered correctly by wrangler dev.

  • Updated dependencies [b210c5e, aec1bb8, e06cbb7, 9a26191, 5565823, 4ef790b, 890fca7, 6fc9777, 337e912, 8e7b74f, e86489a, 42288d4, 65b5f9e, 3a746ac, 64ef9fd, 94b29f7]:

    • wrangler@​4.97.0
    • miniflare@​4.20260601.0

v1.39.1

Compare Source

Patch Changes

v1.39.0

Compare Source

Minor Changes
  • #​13985 c809d30 Thanks @​jamesopstad! - Add assetsOnly (entry Worker) and devOnly (auxiliary Workers) options to the plugin config

    Both options accept a boolean or a function that returns a boolean. The function is evaluated lazily at build time, allowing frameworks to provide the value after initialization.

    Use assetsOnly on the entry Worker to skip building the Worker and instead emit an assets-only Wrangler config to the client output directory. This enables frameworks such as Astro to use the ssr environment during development but produce a fully static app for deployment.

    export default defineConfig({
      plugins: [
        cloudflare({
          assetsOnly: () => isStaticBuild,
        }),
      ],
    });

    Use devOnly on an auxiliary Worker to include it during vite dev but skip it at build time.

    export default defineConfig({
      plugins: [
        cloudflare({
          auxiliaryWorkers: [
            { configPath: "./dev-only-worker/wrangler.jsonc", devOnly: true },
          ],
        }),
      ],
    });
Patch Changes

v1.38.0

Compare Source

Minor Changes
  • #​13989 f598eac Thanks @​MattieTK! - Print a QR code alongside the tunnel URL when sharing via Cloudflare Tunnel

    When a tunnel is started (via wrangler dev --tunnel or the Vite plugin with tunnel: true), a scannable QR code is now printed to the terminal beneath the tunnel URL. This makes it easy to open the tunnel on a mobile device without manually copying the URL.

    The QR code uses Unicode block characters for a compact representation and is generated best-effort -- if generation fails for any reason, the tunnel URL is still displayed as before.

Patch Changes

v1.37.3

Compare Source

Patch Changes
  • #​13978 fa1f61f Thanks @​sassyconsultingllc! - Bump ws from 8.18.0 to 8.20.1 to address GHSA-58qx-3vcg-4xpx

    GHSA-58qx-3vcg-4xpx / CVE-2026-45736 reports an uninitialized-memory disclosure in ws@<8.20.1 when a TypedArray is passed as the reason argument to WebSocket.close(). The fix shipped in ws@8.20.1 on 2026-05-12. This change bumps the workspace catalog entry so that miniflare, wrangler, and @cloudflare/vite-plugin all pick up the patched release.

  • #​13912 d803737 Thanks @​petebacondarwin! - Fix /cdn-cgi/* host validation incorrectly accepting subdomains of exact configured routes

    Miniflare's /cdn-cgi/* host/origin validator was treating exact configured routes the same as wildcard configured routes, so a request whose Host or Origin hostname was a subdomain of an exact route (e.g. sub.my-custom-site.com for a my-custom-site.com/* route) was incorrectly accepted. Exact configured routes and the configured upstream hostname are now required to match the request hostname exactly. Subdomain matching is only applied to wildcard routes such as *.example.com/*. Localhost hostnames continue to be allowed as before.

    This affects wrangler dev and local development through @cloudflare/vite-plugin, both of which use Miniflare under the hood.

  • #​13919 c7eab7f Thanks @​petebacondarwin! - Fix the outbound CF-Worker header reflecting the route pattern hostname instead of the parent zone, and falling back to <worker-name>.example.com under vite dev, vitest-pool-workers, and getPlatformProxy

    Two related issues affected the CF-Worker header on outbound subrequests in local development:

    1. Under @cloudflare/vite-plugin, @cloudflare/vitest-pool-workers, and getPlatformProxy, the header fell back to <worker-name>.example.com even when routes were configured, because unstable_getMiniflareWorkerOptions and the equivalent getPlatformProxy worker-options path did not propagate a zone value to Miniflare. This broke local development against services that reject unknown CF-Worker hosts (for example, Apple WeatherKit returns 403 Forbidden).
    2. Across the above paths and wrangler dev --local, when a route used the zone_name field (for example { pattern: "foo.example.com/*", zone_name: "example.com" }), the header was set to the pattern's hostname (foo.example.com) rather than the zone name (example.com). Production sets CF-Worker to the zone name that owns the Worker, so this was inconsistent with deployed behaviour.

    Both bugs are fixed: the new unstable_getMiniflareWorkerOptions / getPlatformProxy path now propagates a zone derived from the first configured route, and all four local-dev paths now prefer a route's explicit zone_name over the pattern hostname when computing that zone. When zone_name isn't set, the existing best-effort behaviour is preserved — for wrangler dev this means dev.host is still honoured as a local override and the pattern hostname is used as a final fallback. Resolving the parent zone for zone_id-only, custom_domain, or plain-string routes would require an API lookup, so locally we still approximate it with the pattern hostname.

    Note: dev.host is intentionally not consulted by the unstable_getMiniflareWorkerOptions / getPlatformProxy paths — the dev config block is specific to wrangler dev.

  • Updated dependencies [fa1f61f, 2679e05, 7e40d98, adc9221, 735852d, d803737, c7eab7f, e04e180, 59cd880, 62abf97, e8c2031, e349fe0, da0fa8c, a5c9365]:

    • miniflare@​4.20260520.0
    • wrangler@​4.93.1

v1.37.2

Compare Source

Patch Changes

v1.37.1

Compare Source

Patch Changes
  • #​13922 23800f8 Thanks @​edmundhung! - Add a tunnel shortcut hint when CLI shortcuts are printed

    The Cloudflare Vite plugin now includes a t + enter tunnel hint alongside the other CLI shortcuts it prints.

  • #​13920 f579e57 Thanks @​petebacondarwin! - Honor X-Forwarded-Proto when constructing the Worker's request.url

    When running the Vite dev server behind a TLS-terminating reverse proxy or tunnel, the Worker's request.url was always http://... even though the client reached the server over https://.... This caused frameworks that perform Origin/Host checks (e.g. CSRF protection) to reject requests with 403.

    The Vite plugin now reads the X-Forwarded-Proto header from the incoming request and uses it to set the protocol of request.url. If the header is absent or invalid, the connection protocol is used as before. The same handling is applied to WebSocket upgrade URLs.

    Fixes #​13801.

  • Updated dependencies [19ed49a, 3ff0a50, bf688f7, 2e72c83, 802eaf4, 506aa02, 8f5cdb1, be8a98c]:

    • miniflare@​4.20260515.0
    • wrangler@​4.92.0

v1.37.0

Compare Source

Minor Changes
  • #​13903 7ce6f6f Thanks @​edmundhung! - Add named tunnel support to the cloudflare() Vite plugin

    You can now expose your local dev server publicly with a stable hostname by configuring tunnel with a named Cloudflare Tunnel:

    cloudflare({
      tunnel: { name: "my-tunnel", autoStart: true },
    });

    If autoStart is omitted or set to false, you can still start or close the tunnel by pressing t + enter.

Patch Changes

v1.36.4

Compare Source

Patch Changes

v1.36.3

Compare Source

Patch Changes

v1.36.2

Compare Source

Patch Changes
  • Updated dependencies [dd3baf3, 5cf6f81]:
    • wrangler@​4.89.1
    • miniflare@​4.20260507.1

v1.36.1

Compare Source

Patch Changes
  • #​13802 a7fd465 Thanks @​deodad! - Fix .dev.vars written for vite preview to round-trip values containing quotes

    When the plugin emits dist/<env>/.dev.vars for vite preview, it previously wrote each value as a double-quoted dotenv string with " escaped to \". dotenv (the parser wrangler uses) does not unescape \" inside double-quoted values, so values containing " arrived at the worker with literal backslashes still in them.

    The plugin now quotes strings using the first quote character that does not appear in the value (with the priority order: single → backtick → double), all of which dotenv strips correctly. If a value contains every supported quote character it throws instead of silently corrupting the value.

  • Updated dependencies [2284f20, 332f527, 039bada, 18e833d, b6cea17, 1a54ac5, 53e846a, f3fed88, beff19c, af42fed, 1a54ac5]:

    • miniflare@​4.20260507.0
    • wrangler@​4.89.0

v1.36.0

Compare Source

Minor Changes
  • #​13810 2b8c0cc Thanks @​jamesopstad! - Stabilize the secrets configuration property

    The secrets property in the Wrangler config file is no longer experimental and will no longer emit an experimental warning when used. Required secrets are validated during local development and deploy, and used as the source of truth for type generation.

    {
      "secrets": {
        "required": ["API_KEY", "DB_PASSWORD"]
      }
    }
Patch Changes

v1.35.0

Compare Source

Minor Changes

Note

PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • "before 8am every weekday,every weekend"
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot force-pushed the renovate/cloudflare-vite-plugin-1.x branch from 4dcacb9 to 1dacacb Compare April 20, 2026 18:39
@renovate renovate Bot changed the title chore(deps): update dependency @cloudflare/vite-plugin to v1.32.3 chore(deps): update dependency @cloudflare/vite-plugin to v1.33.0 Apr 20, 2026
@renovate renovate Bot changed the title chore(deps): update dependency @cloudflare/vite-plugin to v1.33.0 chore(deps): update dependency @cloudflare/vite-plugin to v1.33.1 Apr 21, 2026
@renovate renovate Bot force-pushed the renovate/cloudflare-vite-plugin-1.x branch 2 times, most recently from 724bb7d to fcd45dc Compare April 24, 2026 14:59
@renovate renovate Bot changed the title chore(deps): update dependency @cloudflare/vite-plugin to v1.33.1 chore(deps): update dependency @cloudflare/vite-plugin to v1.33.2 Apr 24, 2026
@renovate renovate Bot changed the title chore(deps): update dependency @cloudflare/vite-plugin to v1.33.2 chore(deps): update dependency @cloudflare/vite-plugin to v1.34.0 Apr 28, 2026
@renovate renovate Bot force-pushed the renovate/cloudflare-vite-plugin-1.x branch 2 times, most recently from e07ef10 to 4c22fc4 Compare April 30, 2026 17:34
@renovate renovate Bot changed the title chore(deps): update dependency @cloudflare/vite-plugin to v1.34.0 chore(deps): update dependency @cloudflare/vite-plugin to v1.35.0 Apr 30, 2026
@renovate renovate Bot force-pushed the renovate/cloudflare-vite-plugin-1.x branch from 4c22fc4 to 97e7242 Compare May 5, 2026 19:13
@renovate renovate Bot changed the title chore(deps): update dependency @cloudflare/vite-plugin to v1.35.0 chore(deps): update dependency @cloudflare/vite-plugin to v1.36.0 May 5, 2026
@renovate renovate Bot force-pushed the renovate/cloudflare-vite-plugin-1.x branch from 97e7242 to 1c3e57e Compare May 8, 2026 12:11
@renovate renovate Bot changed the title chore(deps): update dependency @cloudflare/vite-plugin to v1.36.0 chore(deps): update dependency @cloudflare/vite-plugin to v1.36.3 May 8, 2026
@renovate renovate Bot force-pushed the renovate/cloudflare-vite-plugin-1.x branch from 1c3e57e to 1a8c308 Compare May 12, 2026 16:40
@renovate renovate Bot changed the title chore(deps): update dependency @cloudflare/vite-plugin to v1.36.3 chore(deps): update dependency @cloudflare/vite-plugin to v1.36.4 May 12, 2026
@renovate renovate Bot force-pushed the renovate/cloudflare-vite-plugin-1.x branch from 1a8c308 to e4a1273 Compare May 14, 2026 13:35
@renovate renovate Bot changed the title chore(deps): update dependency @cloudflare/vite-plugin to v1.36.4 chore(deps): update dependency @cloudflare/vite-plugin to v1.37.0 May 14, 2026
@renovate renovate Bot force-pushed the renovate/cloudflare-vite-plugin-1.x branch from e4a1273 to 2e2147c Compare May 15, 2026 12:32
@renovate renovate Bot changed the title chore(deps): update dependency @cloudflare/vite-plugin to v1.37.0 chore(deps): update dependency @cloudflare/vite-plugin to v1.37.1 May 15, 2026
@renovate renovate Bot force-pushed the renovate/cloudflare-vite-plugin-1.x branch from 2e2147c to 3594972 Compare May 19, 2026 10:33
@renovate renovate Bot changed the title chore(deps): update dependency @cloudflare/vite-plugin to v1.37.1 chore(deps): update dependency @cloudflare/vite-plugin to v1.37.2 May 19, 2026
@renovate renovate Bot force-pushed the renovate/cloudflare-vite-plugin-1.x branch from 3594972 to 1393858 Compare May 21, 2026 15:08
@renovate renovate Bot changed the title chore(deps): update dependency @cloudflare/vite-plugin to v1.37.2 chore(deps): update dependency @cloudflare/vite-plugin to v1.37.3 May 21, 2026
@renovate renovate Bot force-pushed the renovate/cloudflare-vite-plugin-1.x branch from 1393858 to 5b6eaec Compare May 22, 2026 14:07
@renovate renovate Bot changed the title chore(deps): update dependency @cloudflare/vite-plugin to v1.37.3 chore(deps): update dependency @cloudflare/vite-plugin to v1.38.0 May 22, 2026
@renovate renovate Bot force-pushed the renovate/cloudflare-vite-plugin-1.x branch from 5b6eaec to fcad7e3 Compare May 26, 2026 23:08
@renovate renovate Bot changed the title chore(deps): update dependency @cloudflare/vite-plugin to v1.38.0 chore(deps): update dependency @cloudflare/vite-plugin to v1.39.0 May 26, 2026
@renovate renovate Bot force-pushed the renovate/cloudflare-vite-plugin-1.x branch from fcad7e3 to 5cf0ad2 Compare June 1, 2026 22:04
@renovate renovate Bot changed the title chore(deps): update dependency @cloudflare/vite-plugin to v1.39.0 chore(deps): update dependency @cloudflare/vite-plugin to v1.39.1 Jun 1, 2026
@renovate renovate Bot force-pushed the renovate/cloudflare-vite-plugin-1.x branch from 5cf0ad2 to e1b0498 Compare June 2, 2026 18:16
@renovate renovate Bot changed the title chore(deps): update dependency @cloudflare/vite-plugin to v1.39.1 chore(deps): update dependency @cloudflare/vite-plugin to v1.39.2 Jun 2, 2026
@renovate renovate Bot force-pushed the renovate/cloudflare-vite-plugin-1.x branch from e1b0498 to 9d81334 Compare June 4, 2026 16:01
@renovate renovate Bot changed the title chore(deps): update dependency @cloudflare/vite-plugin to v1.39.2 chore(deps): update dependency @cloudflare/vite-plugin to v1.40.0 Jun 4, 2026
@renovate renovate Bot force-pushed the renovate/cloudflare-vite-plugin-1.x branch from 9d81334 to 345f798 Compare June 9, 2026 17:01
@renovate renovate Bot changed the title chore(deps): update dependency @cloudflare/vite-plugin to v1.40.0 chore(deps): update dependency @cloudflare/vite-plugin to v1.40.1 Jun 9, 2026
@renovate renovate Bot force-pushed the renovate/cloudflare-vite-plugin-1.x branch from 345f798 to bda467c Compare June 12, 2026 00:13
@renovate renovate Bot changed the title chore(deps): update dependency @cloudflare/vite-plugin to v1.40.1 chore(deps): update dependency @cloudflare/vite-plugin to v1.40.2 Jun 12, 2026
@renovate renovate Bot force-pushed the renovate/cloudflare-vite-plugin-1.x branch from bda467c to d9437e4 Compare June 16, 2026 18:59
@renovate renovate Bot changed the title chore(deps): update dependency @cloudflare/vite-plugin to v1.40.2 chore(deps): update dependency @cloudflare/vite-plugin to v1.41.0 Jun 16, 2026
@renovate renovate Bot force-pushed the renovate/cloudflare-vite-plugin-1.x branch from d9437e4 to 627f2ae Compare June 18, 2026 18:44
@renovate renovate Bot changed the title chore(deps): update dependency @cloudflare/vite-plugin to v1.41.0 chore(deps): update dependency @cloudflare/vite-plugin to v1.42.0 Jun 18, 2026
@renovate renovate Bot force-pushed the renovate/cloudflare-vite-plugin-1.x branch from 627f2ae to 6efd6e0 Compare June 19, 2026 16:12
@renovate renovate Bot changed the title chore(deps): update dependency @cloudflare/vite-plugin to v1.42.0 chore(deps): update dependency @cloudflare/vite-plugin to v1.42.1 Jun 19, 2026
@renovate renovate Bot force-pushed the renovate/cloudflare-vite-plugin-1.x branch from 6efd6e0 to d66ca01 Compare June 23, 2026 17:53
@renovate renovate Bot changed the title chore(deps): update dependency @cloudflare/vite-plugin to v1.42.1 chore(deps): update dependency @cloudflare/vite-plugin to v1.42.2 Jun 23, 2026
@renovate renovate Bot force-pushed the renovate/cloudflare-vite-plugin-1.x branch from d66ca01 to 0e643b6 Compare June 25, 2026 16:30
@renovate renovate Bot changed the title chore(deps): update dependency @cloudflare/vite-plugin to v1.42.2 chore(deps): update dependency @cloudflare/vite-plugin to v1.42.3 Jun 25, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants